version bump to 2.11.2 (#319)
authorSteven G. Johnson <stevenj@alum.mit.edu>
Sat, 22 Nov 2025 19:14:03 +0000 (14:14 -0500)
committerGitHub <noreply@github.com>
Sat, 22 Nov 2025 19:14:03 +0000 (14:14 -0500)
CMakeLists.txt
MANIFEST
Makefile
NEWS.md
utf8proc.h

index 96fc653eaa1fc4fab52cf09c7356ba2ea703a80a..5347218066c615fb2781993461f149cfb2f88b81 100644 (file)
@@ -5,14 +5,14 @@ include (utils.cmake)
 disallow_intree_builds()
 
 # API version - be sure to update utf8proc.h and Makefile, too!
-project (utf8proc VERSION 2.11.1 LANGUAGES C)
+project (utf8proc VERSION 2.11.2 LANGUAGES C)
 
 # This is the ABI version number, which may differ from the
 # API version number (defined in utf8proc.h and above).
 # Be sure to also update these in Makefile and MANIFEST!
 set(SO_MAJOR 3)
 set(SO_MINOR 2)
-set(SO_PATCH 1)
+set(SO_PATCH 2)
 
 option(UTF8PROC_INSTALL "Enable installation of utf8proc" On)
 option(UTF8PROC_ENABLE_TESTING "Enable testing of utf8proc" Off)
index d43a5fdc9c2317eb0074318c140e7408aca0900c..32255a3af664dbf813b4af031b96f11ad0c19ec8 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,8 +2,8 @@ include/
 include/utf8proc.h
 lib/
 lib/libutf8proc.a
-lib/libutf8proc.so -> libutf8proc.so.3.2.1
-lib/libutf8proc.so.2 -> libutf8proc.so.3.2.1
-lib/libutf8proc.so.3.2.1
+lib/libutf8proc.so -> libutf8proc.so.3.2.2
+lib/libutf8proc.so.2 -> libutf8proc.so.3.2.2
+lib/libutf8proc.so.3.2.2
 lib/pkgconfig/
 lib/pkgconfig/libutf8proc.pc
index 0f6c2a6f4a701921428e298dc87f1962acb174c0..dc0f437f49524f0a81decf3b21a177313d7e05b3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -24,10 +24,10 @@ SOFLAG = -Wl,-soname
 # Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
 MAJOR=3
 MINOR=2
-PATCH=1
+PATCH=2
 
 # api version (also in utf8proc.h and CMakeLists.txt)
-VERSION=2.11.1
+VERSION=2.11.2
 
 OS := $(shell uname)
 ifeq ($(OS),Darwin) # MacOS X
diff --git a/NEWS.md b/NEWS.md
index 2cb50557811b2349732fdde4b78bc0f85168b0d6..d715206a65b2b0afeec7a557f3e3f332e378307e 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,11 @@
 # utf8proc release history #
 
+## Version 2.11.2 ##
+
+2025-11-22
+
+- Fix composition for Hangul character U+11a7 ([#317]).
+
 ## Version 2.11.1 ##
 
 2025-11-13
@@ -477,3 +483,4 @@ Release of version 1.0.1
 [#294]: https://github.com/JuliaStrings/utf8proc/issues/294
 [#295]: https://github.com/JuliaStrings/utf8proc/issues/295
 [#311]: https://github.com/JuliaStrings/utf8proc/issues/311
+[#317]: https://github.com/JuliaStrings/utf8proc/issues/317
index b43904f49a3d1f8e359219b79b9dce5c540b1096..3893f6f91465b35ffe6d7ed5f62218c2032c59f5 100644 (file)
@@ -73,7 +73,7 @@
 /** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
 #define UTF8PROC_VERSION_MINOR 11
 /** The PATCH version (increased for fixes that do not change the API). */
-#define UTF8PROC_VERSION_PATCH 1
+#define UTF8PROC_VERSION_PATCH 2
 /** @} */
 
 #include <stdlib.h>